ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Core Namespace / ImGearReadOnlyDictionary<TKey,TValue> Class / Add Method / Add(TKey,TValue) Method
The object to use as the key of the element to add.
The object to use as the value of the element to add.




In This Topic
    Add(TKey,TValue) Method
    In This Topic
    This method is not supported by the ImGearReadOnlyDictionary.
    Syntax
    'Declaration
     
    Public Overloads Sub Add( _
       ByVal key As TKey, _
       ByVal value As TValue _
    ) 
    'Usage
     
    Dim instance As ImGearReadOnlyDictionary(Of TKey,TValue)
    Dim key As TKey
    Dim value As TValue
     
    instance.Add(key, value)
    public void Add( 
       TKey key,
       TValue value
    )
    public: void Add( 
       TKey* key,
       TValue* value
    ) 
    public:
    void Add( 
       TKey^ key,
       TValue^ value
    ) 

    Parameters

    key
    The object to use as the key of the element to add.
    value
    The object to use as the value of the element to add.
    See Also